home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / tools / reqtools / rexxreqtools / install < prev    next >
Text File  |  1995-08-25  |  1KB  |  54 lines

  1. ; Installer installation script for RexxReqTools
  2. ;$VER:Install RexxReqTools 37.4 (5.2.94)
  3.  
  4. (set @default-dest "")
  5.  
  6. (user 2)
  7.  
  8. (if (< (/ (getversion) 65536) 37)
  9.   (
  10.     (abort "You must have Kickstart 2.04 or higher installed to use RexxReqTools!")
  11.   )
  12. )
  13.  
  14. (complete 0)
  15.  
  16. (message "\nRexxReqTools installation\n\n\n"
  17.          "This script installs RexxReqTools 1.2e\n"
  18.          "on your Amiga.\n\n\n\n"
  19.          "RexxReqTools © 1992-1994 Rafael D'Halleweyn\n"
  20.          "All rights reserved."
  21. )
  22.  
  23. (copylib
  24.   (prompt "\nCopying rexxreqtools.library to LIBS:...")
  25.   (help "rexxreqtools.library contains all the ARexx "
  26.         "functions to use RexxReqTools.\n"
  27.         "SEE ALSO: RexxReqTools.guide or .doc.\n\n"
  28.         @copylib-help)
  29.   (source "rexxreqtools.library")
  30.   (dest "LIBS:")
  31.   (confirm)
  32. )
  33.  
  34. (complete 90)
  35.  
  36. (startup
  37.   "RexxReqTools"
  38.   (prompt "\n\nAdd rexxreqtools.library to the ARexx Library List?\n\n"
  39.           "(NOTE: this will add a \"RXLIB\" command to the User-Startup)")
  40.   (help "To use RexxReqTools you have to tell ARexx about this new library. "
  41.         "You can do these with the\n"
  42.         "  RXLIB rexxreqtools.library 0 -30\n"
  43.         "command.\n"
  44.         "SEE ALSO: RexxReqTools.guide or .doc\n\n"
  45.         @startup-help)
  46.   (command "RXLIB >NIL: rexxreqtools.library 0 -30")
  47. )
  48.  
  49. (complete 100)
  50. (exit)
  51.  
  52. ; that'll keep him happy
  53. (welcome)
  54.